home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / dslibrary.lha / ds.library / autodocs / libraries / dsbase.h < prev   
C/C++ Source or Header  |  1997-02-13  |  1KB  |  51 lines

  1. @DATABASE "libraries/dsbase.h"
  2. @MASTER   "Workbench31:MCPP4.0_PRO/Aminet/ds.library/autodocs//include/libraries/dsbase.h"
  3. @REMARK   This file was created by ADtoHT 2.1 on 13-Feb-97  20:07:58
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "libraries/dsbase.h"
  8.  
  9. @{"libraries/dsbase.h" LINK File}
  10.  
  11.  
  12. @{b}Structures@{ub}
  13.  
  14. @{"DSBase" LINK "libraries/dsbase.h/File" 23}
  15.  
  16. @ENDNODE
  17. @NODE File "libraries/dsbase.h"
  18. /*
  19. **      $VER: dsbase.h 37.1 (30.01.97)
  20. **
  21. **      definition of DSBase
  22. **
  23. **      (C) Copyright 1997 Markus Hillenbrand
  24. **      All Rights Reserved.
  25. */
  26.  
  27. #ifndef EXAMPLE_EXAMPLEBASE_H
  28. #define EXAMPLE_EXAMPLEBASE_H
  29.  
  30. #ifdef   __MAXON__
  31. #ifndef  EXEC_LIBRARIES_H
  32. #include <exec/libraries.h>
  33. #endif
  34. #else
  35. #ifndef  EXEC_LIBRARIES
  36. #include <exec/libraries.h>
  37. #endif /* EXEC_LIBRARIES_H */
  38. #endif
  39.  
  40. struct DSBase
  41.         {
  42.         struct Library                  dsb_LibNode;
  43.         APTR                                            dsb_SegList;
  44.         struct ExecBase         *dsb_SysBase;
  45.         struct IntuitionBase    *dsb_IntuitionBase;
  46.         struct GfxBase                  *dsb_GfxBase;
  47. };
  48.  
  49. #endif /* EXAMPLE_EXAMPLEBASE_H */
  50. @ENDNODE
  51.